home *** CD-ROM | disk | FTP | other *** search
/ Old Testament Foundatiosn with Philip Yancey / Old Testament Foundatiosn with Philip Yancey - Disc 2.iso / pc / data / notes.dir / 00009_mscr2.ls < prev    next >
Encoding:
Text File  |  1996-09-09  |  561 b   |  17 lines

  1. on openHelp
  2.   global gHelpWindow
  3.   if objectp(gHelpWindow) then
  4.     forget(gHelpWindow)
  5.   end if
  6.   set horzOrigin to the stageLeft + 330
  7.   set vertOrigin to the stageTop + 50
  8.   set myNotesWindowRect to rect(horzOrigin, vertOrigin, horzOrigin + 176, vertOrigin + 150)
  9.   set gHelpWindow to window "helpMovie"
  10.   set the rect of gHelpWindow to myNotesWindowRect
  11.   set the fileName of gHelpWindow to "help.dir"
  12.   set the windowType of gHelpWindow to 4
  13.   set the titleVisible of gHelpWindow to 1
  14.   set the title of gHelpWindow to "Notes Help"
  15.   open(gHelpWindow)
  16. end
  17.